home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9206.ARJ / 1006098A < prev    next >
Text File  |  1992-06-02  |  405b  |  23 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. #define MAX_LEN 10
  5.  
  6. main()
  7. {
  8.     char str[MAX_LEN + 1];
  9.     char edit_mask[6];
  10.  
  11.     printf("Enter string (max length %u): ", MAX_LEN);
  12.  
  13.     sprintf(edit_mask, "%%%us", MAX_LEN);
  14.     scanf(edit_mask, str);
  15.     printf("edit_mask contains >%s<, str contains >%s<\n",
  16.         edit_mask, str);
  17.  
  18.     return (0);
  19. }
  20. Enter string (max length 10): abc
  21. edit_mask contains >%10s<, str contains >abc<
  22.  
  23.